home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevs3ga.c < prev    next >
C/C++ Source or Header  |  1996-09-17  |  7KB  |  240 lines

  1. /* Copyright (C) 1992, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevs3ga.c */
  20. /* S3 86C911 driver */
  21. #include "gx.h"
  22. #include "gserrors.h"
  23. #include "gxdevice.h"
  24. #include "gdevpcfb.h"
  25. #include "gdevsvga.h"
  26.  
  27. /* Shared routines from gdevsvga.c */
  28. extern int vesa_get_mode(P0());
  29. extern void vesa_set_mode(P1(int));
  30.  
  31. /* Macro for casting gx_device argument */
  32. #define fb_dev ((gx_device_svga *)dev)
  33.  
  34. /* ------ The S3 86C911 device ------ */
  35.  
  36. private dev_proc_open_device(s3_open);
  37. private dev_proc_fill_rectangle(s3_fill_rectangle);
  38. private dev_proc_copy_mono(s3_copy_mono);
  39. private gx_device_procs s3_procs = {
  40.     s3_open,
  41.     NULL,            /* get_initial_matrix */
  42.     NULL,            /* sync_output */
  43.     NULL,            /* output_page */
  44.     svga_close,
  45.     svga_map_rgb_color,
  46.     svga_map_color_rgb,
  47.     s3_fill_rectangle,
  48.     NULL,            /* tile_rectangle */
  49.     s3_copy_mono,
  50.     svga_copy_color,    /****** DOESN'T WORK ******/
  51.     NULL,            /* draw_line */
  52.     svga_get_bits        /****** DOESN'T WORK ******/
  53. };
  54. gx_device_svga far_data gs_s3vga_device =
  55.     svga_device(s3_procs, "s3vga", vesa_get_mode, vesa_set_mode, NULL);
  56.  
  57. /* Keep track of the character bitmap cache in off-screen memory. */
  58. #define log2_cell_width 5
  59. #define cell_width (1 << log2_cell_width)
  60. #define cache_x_bits (log2_cache_width_bits - log2_cell_width)
  61. #define log2_cell_height 5
  62. #define cell_height (1 << log2_cell_height)
  63. #define cache_y_bits (log2_cache_height - log2_cell_height)
  64. #define log2_cache_width_bits 10
  65. #define log2_cache_width_bytes (log2_cache_width_bits - 3)
  66. #define log2_cache_height 8
  67. #define log2_cache_capacity (cache_x_bits + cache_y_bits)
  68. #define cache_capacity (1 << log2_cache_capacity)
  69. private gx_bitmap_id cache_ids[cache_capacity];
  70.  
  71. /* Define additional registers and I/O addresses. */
  72. #define crtc_addr 0x3d4        /* (color) */
  73. #define crt_lock 0x35
  74. #define crt_s3_lock1 0x38
  75. #define crt_s3_lock2 0x39
  76. #define s3_y_pos 0x82e8
  77. #define s3_x_pos 0x86e8
  78. #define s3_y_dest 0x8ae8
  79. #define s3_x_dest 0x8ee8
  80. #define s3_width 0x96e8
  81. #define s3_status 0x9ae8    /* read only */
  82. #define s3_command 0x9ae8    /* write only */
  83. #define s3_back_color 0xa2e8
  84. #define s3_fore_color 0xa6e8
  85. #define s3_write_mask 0xaae8
  86. #define s3_read_mask 0xaee8
  87. #define s3_back_mix 0xb6e8
  88. #define s3_fore_mix 0xbae8
  89. #define s3_height 0xbee8
  90. #define s3_mf_control 0xbee8
  91. #  define mf_data_ones 0xa000
  92. #  define mf_data_cpu 0xa080
  93. #  define mf_data_display 0xa0c0
  94. #define s3_pixel_data 0xe2e8
  95. /* Wait for the command FIFO to empty. */
  96. #define s3_wait_fifo()\
  97.   while ( inport(s3_status) & 0xff )
  98. /* Load the parameters for a rectangle operation. */
  99. #define out_s3_rect(x, y, w, h)\
  100.   (outport(s3_x_pos, x), outport(s3_y_pos, y),\
  101.    outport(s3_width, (w) - 1), outport(s3_height, (h) - 1))
  102.  
  103. private int
  104. s3_open(gx_device *dev)
  105. {    static const mode_info mode_table[] = {
  106.        {     640,  480, 0x201    },
  107.        {     800,  600, 0x203    },
  108.        {    1024,  768, 0x205    },
  109.        {    -1, -1, -1    }
  110.     };
  111.     int code = svga_find_mode(dev, mode_table);
  112.     if ( code < 0 ) return_error(gs_error_rangecheck);
  113.     /* The enhanced modes all use a 1024-pixel raster. */
  114.     fb_dev->raster = 1024;
  115.     code = svga_open(dev);
  116.     if ( code < 0 ) return code;
  117.     /* Clear the cache */
  118.     {    int i;
  119.         for ( i = 0; i < cache_capacity; i++ )
  120.             cache_ids[i] = gx_no_bitmap_id;
  121.     }
  122.     return 0;
  123. }
  124.  
  125. /* Fill a rectangle. */
  126. int
  127. s3_fill_rectangle(gx_device *dev, int x, int y, int w, int h,
  128.   gx_color_index color)
  129. {    fit_fill(dev, x, y, w, h);
  130.     s3_wait_fifo();
  131.     outport(s3_fore_mix, 0x27);
  132.     outport(s3_fore_color, (int)color);
  133.     outport(s3_mf_control, mf_data_ones);
  134.     out_s3_rect(x, y, w, h);
  135.     outport(s3_command, 0x40b3);
  136.     return 0;
  137. }
  138.  
  139. /* Copy a monochrome bitmap.  The colors are given explicitly. */
  140. /* Color = gx_no_color_index means transparent (no effect on the image). */
  141. private int
  142. s3_copy_mono(gx_device *dev,
  143.   const byte *base, int sourcex, int raster, gx_bitmap_id id,
  144.   int x, int y, int w, int h, gx_color_index czero, gx_color_index cone)
  145. {    int sbit;
  146.     const byte *sptr;
  147.     int run;
  148.     byte lmask;
  149.     byte lmerge = 0;
  150.     int cache_index, cache_x, cache_y;
  151.     int i, j;
  152.     fit_copy(dev, base, sourcex, raster, id, x, y, w, h);
  153.     sbit = sourcex & 7;
  154.     sptr = base + (sourcex >> 3);
  155.     run = (sbit + w + 7) >> 3;
  156.     lmask = 0xff >> sbit;
  157.     /* See whether the cache is applicable. */
  158.     if ( id != gx_no_bitmap_id && w <= cell_width - 7 &&
  159.          h <= cell_height
  160.        )
  161.     {    cache_index = (int)(id & (cache_capacity - 1));
  162.         cache_x = ((cache_index & ((1 << cache_x_bits) - 1)) <<
  163.             log2_cell_width) + 7;
  164.         cache_y = ((cache_index >> cache_x_bits) <<
  165.             log2_cell_height) + 768;
  166.         if ( cache_ids[cache_index] != id )
  167.         {    cache_ids[cache_index] = id;
  168.             /* Copy the bitmap to the cache. */
  169.             s3_wait_fifo();
  170.             out_s3_rect(cache_x - sbit, cache_y, w + sbit, h);
  171.             outport(s3_fore_mix, 0x22);    /* 1s */
  172.             outport(s3_back_mix, 0x01);    /* 0s */
  173.             outport(s3_mf_control, mf_data_cpu);
  174.             outport(s3_command, 0x41b3);
  175.             {    const int skip = raster - run;
  176.                 for ( i = h; i > 0; i--, sptr += skip )
  177.                   for ( j = run; j > 0; j--, sptr++ )
  178.                     outportb(s3_pixel_data, *sptr);
  179.             }
  180.         }
  181.         s3_wait_fifo();
  182.     }
  183.     else
  184.     {    cache_index = -1;
  185.         if ( lmask != 0xff )
  186.         {    /* The hardware won't do the masking for us. */
  187.             if ( czero != gx_no_color_index )
  188.             {    if ( cone != gx_no_color_index )
  189.                 {    s3_fill_rectangle(dev, x, y, w, h, czero);
  190.                     czero = gx_no_color_index;
  191.                 }
  192.                 else
  193.                 {    lmerge = ~lmask;
  194.                 }
  195.             }
  196.         }
  197.         s3_wait_fifo();
  198.         out_s3_rect(x - sbit, y, w + sbit, h);
  199.     }
  200.     /* Load the colors for the real transfer. */
  201.     if ( cone != gx_no_color_index )
  202.     {    outport(s3_fore_mix, 0x27);
  203.         outport(s3_fore_color, (int)cone);
  204.     }
  205.     else
  206.         outport(s3_fore_mix, 0x63);
  207.     if ( czero != gx_no_color_index )
  208.     {    outport(s3_back_mix, 0x07);
  209.         outport(s3_back_color, (int)czero);
  210.     }
  211.     else
  212.         outport(s3_back_mix, 0x63);
  213.     s3_wait_fifo();
  214.     if ( cache_index < 0 )        /* direct transfer */
  215.     {    outport(s3_mf_control, mf_data_cpu);
  216.         outport(s3_command, 0x41b3);
  217.         if ( run == 1 && !lmerge )    /* special case for chars */
  218.         {    for ( i = h; i > 0; i--, sptr += raster )
  219.                 outportb(s3_pixel_data, *sptr & lmask);
  220.         }
  221.         else
  222.         {    const int skip = raster - run;
  223.             for ( i = h; i > 0; i--, sptr += skip )
  224.             {    outportb(s3_pixel_data, (*sptr++ & lmask) | lmerge);
  225.                 for ( j = run; j > 1; j--, sptr++ )
  226.                     outportb(s3_pixel_data, *sptr);
  227.             }
  228.         }
  229.     }
  230.     else
  231.     {    /* Copy the character from the cache to the screen. */
  232.         out_s3_rect(cache_x, cache_y, w, h);
  233.         outport(s3_x_dest, x);
  234.         outport(s3_y_dest, y);
  235.         outport(s3_mf_control, mf_data_display);
  236.         outport(s3_command, 0xc0b3);
  237.     }
  238.     return 0;
  239. }
  240.